home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / module-init-tools / FAQ < prev    next >
Text File  |  2009-06-23  |  1KB  |  29 lines

  1. Frequently Asked Module User Questions
  2.  
  3. Q) I get "/usr/bin/ld: cannot find -lc"
  4. A) You need to install a development package which contains libc.a.
  5.  
  6. Q) I'm using RedHat and modules don't autoload any more.
  7. A) Old versions of RedHat turns module autoloading off if /proc/ksyms
  8.    isn't found.  Change line 337 of /etc/rc.d/rc.sysinit from:
  9.  
  10.   if ! grep -iq nomodules /proc/cmdline 2>/dev/null && [ -f /proc/ksyms ]; then
  11.  
  12.    to
  13.  
  14.   if ! grep -iq nomodules /proc/cmdline 2>/dev/null && [ -f /proc/modules ]; then
  15.  
  16. Q) Sound doesn't load automatically.
  17. A) You need to set up an alias (or install command) for "sound-slot-0" in
  18.    /etc/modprobe.d/sound.conf: the ALSA sound system sometimes wants this.
  19.  
  20. Q) What is "[unsafe]" next to the module name in lsmod?
  21. A) It means someone used an old-style interfaces to try to control this
  22.    module: these are slowly being tracked down and eliminated.  You can
  23.    use "rmmod -f" to force removal if you configured your kernel with
  24.    CONFIG_MODULE_FORCE_UNLOAD set.
  25.  
  26. Q) I'm having trouble inserting out-of-tree modules
  27. A) See kernel source tree documentation: Documentation/kbuild/modules.txt
  28.    
  29.